body {
  background-color: #1a1a1a;
  color: #f0f0f0;
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

#container {
  text-align: center;
}

h1 {
  font-size: 3rem;
  color: #fff;
  text-shadow: 2px 2px 0px #ff00ff, -2px -2px 0px #00ffff;
}

p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

canvas {
  background-color: #000;
  border: 4px solid #fff;
  box-shadow: 0 0 20px #fff;
  /* This makes the canvas sharp and pixelated */
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-crisp-edges;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  display: block; /* Removes bottom space under canvas */
}

